사이트 내 전체검색
레이어를 이용한 특정 범위 인쇄
로빈아빠
https://cmd.kr/javascript/653 URL이 복사되었습니다.

본문

레이어를 이용한 특정 범위 인쇄

<script>
var initBody;
function beforePrint()
{ 
   initBody = document.body.innerHTML; 
   document.body.innerHTML = div_page.innerHTML;
} 

function afterPrint()
{ 
  document.body.innerHTML = initBody; 
} 

function pageprint()
{
     window.onbeforeprint = beforePrint; 
     window.onafterprint = afterPrint; 
     window.print(); 
}
</script>
<a href="#" onclick="pageprint()"> 인쇄하기</a>

<div id="div_page">
여기만 인쇄

여기만 인쇄

여기만 인쇄

여기만 인쇄
</div>

댓글목록

등록된 댓글이 없습니다.

831 (3/17P)

Search

Copyright © Cmd 명령어 18.224.180.183